home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 / (Vol 132) Jun 09 2011.iso / Games / sushi-king.swf / scripts / frame_10 / DoAction.as
Encoding:
Text File  |  2011-06-09  |  372 b   |  18 lines

  1. check_login = true;
  2. this.onEnterFrame = function()
  3. {
  4.    if(check_login)
  5.    {
  6.       if(_root.check_id == "" || _root.check_id == undefined || _root.check_id == null)
  7.       {
  8.          _root.user_id = "guest";
  9.       }
  10.       else
  11.       {
  12.          check_login = false;
  13.          _root.user_id = _root.check_id;
  14.          _root.text_mc.mc.play();
  15.       }
  16.    }
  17. };
  18.